home *** CD-ROM | disk | FTP | other *** search
- var mcV = this.airPlaneM;
- mcV._x = this._width / 2;
- mcV.targetXPosV = (this._width / 2 + mcV._width) * -1;
- mcV.moveStepV = 2;
- mcV.onEnterFrame = function()
- {
- var _loc1_ = this;
- _loc1_._x -= _loc1_.moveStepV;
- if(_loc1_._x <= _loc1_.targetXPosV)
- {
- _loc1_._x = _loc1_._parent._width / 2;
- }
- };
- this.visualSpeedM._x = this._width / 2 * -1;
- this.visualSpeedM._visible = false;
- this.visualPowerM._x = this._width / 2 * -1;
- this.visualPowerM._visible = false;
-